home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / olecon~1 / controls / template / autotsat.rc < prev    next >
Text File  |  1995-11-25  |  4KB  |  110 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // <<DEFSERVERNAME>>.RC
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright  1995  Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. //
  27. // Our Non-Localized Type Library
  28. //
  29. 1 TYPELIB <<DEFSERVERNAME>>.TLB
  30.  
  31. /////////////////////////////////////////////////////////////////////////////
  32. //
  33. //    This table includes the languages supported by this server.
  34. //    Each language maps to a satalite DLL that contains error messages.
  35. //
  36. //      - if you do not want to use satellite Localization, then
  37. //        remove this table
  38. //      - TODO: add any new languages you wish to support to this table
  39. //
  40. INTLSZ_LANGMAP RCDATA DISCARDABLE 
  41. BEGIN
  42. //    Primary Language ID  SubLanguage ID          Satalite DLL
  43. //    -------------------  --------------          ------------
  44.     LANG_FRENCH,         SUBLANG_FRENCH,         "<<DEFSERVERNAME>>FR.DLL","\0",
  45.     LANG_JAPANESE,       SUBLANG_DEFAULT,        "<<DEFSERVERNAME>>JP.DLL","\0",
  46. END
  47.  
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54.  
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. //
  58. // String tables with Exception Information, etc.
  59. //
  60.  
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63. // Version Information
  64. /////////////////////////////////////////////////////////////////////////////
  65. //
  66. #include "dwinvers.h"
  67. #include <winver.h>
  68.  
  69. VS_VERSION_INFO VERSIONINFO
  70.  
  71. FILEVERSION    04,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  72. PRODUCTVERSION    04,00,vusVersNumf2,vusVersNuml2
  73.  
  74.  
  75. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  76. #ifdef DEBUG
  77. FILEFLAGS    VS_FF_DEBUG
  78. #else
  79. FILEFLAGS    0L
  80. #endif
  81.  
  82. FILEOS        VOS_NT_WINDOWS32
  83.  
  84. FILETYPE    VFT_DLL
  85. FILESUBTYPE    0
  86. {
  87.     BLOCK "StringFileInfo"
  88.     {
  89.         BLOCK "040904B0" // Language and character set identifiers.
  90.         {
  91.             VALUE "CompanyName",     "My Company Name\0"
  92.             VALUE "FileDescription", "<<DEFSERVERNAME>>"
  93.             VALUE "FileVersion",     vszVersNumAll
  94.             VALUE "InternalName",    "<<DEFSERVERNAME>>.DLL\0"
  95.             VALUE "LegalCopyright",  vszCopyright
  96.             VALUE "LegalTrademarks", "Put Legal TradeMarks here ...\0"
  97.             VALUE "ProductName",     "<<DEFSERVERNAME>> Object Library\0"
  98.             VALUE "ProductVersion",  vszVersNumAll
  99.             VALUE "Comments",        vszMakeDate
  100.             VALUE "OLESelfRegister", "\0"
  101.         }
  102.     }
  103.     BLOCK "VarFileInfo"
  104.     {
  105.         VALUE "Translation" ,0x409, 0x4b0
  106.     }
  107. }
  108.  
  109.  
  110.